home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / language / embedded / ibm / r3sim.arc / MAKEFILE.MAK < prev    next >
Text File  |  1989-07-06  |  995b  |  35 lines

  1.  
  2. # sim_r3 make file for POLYMAKE    04 july 1989
  3. #
  4. # Microsoft MAKE users note: to use this file with Microsoft MAKE, just
  5. # move the sim_r3.exe: rule to the end of this file.
  6. # This file is very verbose for a real MAKE like POLYMAKE; this is to
  7. # make it easy to convert to Microsoft's weaker MAKE.
  8.  
  9. compile = CL /Alfd /G0 /DDOS /c
  10. #compile = CL /Zi /Od /Alfd /G0 /DDOS /c
  11. #/Zi /Od = full codeview support and no optimization, for debugging
  12.  
  13. sim_r3.exe:    sim_r3.obj instr.obj instr2.obj sim_mem.obj sim_time.obj
  14.     link sim_r3.obj instr.obj instr2.obj sim_mem.obj sim_time.obj,,,/M /LI /NOE /ST:9999 GRAPHICS /NOI
  15.     
  16. # add /CODEVIEW after /NOI to incorporate symbol information for
  17. # codeview debugging
  18.  
  19. sim_r3.obj : sim_r3.c sim.h
  20.      $(compile) $<
  21.       
  22. sim_mem.obj : sim_mem.c sim.h
  23.      $(compile) $<
  24.       
  25. sim_time.obj : sim_time.c sim.h
  26.      $(compile) $<
  27.  
  28. instr.obj : instr.c sim.h
  29.      $(compile) $<
  30.  
  31. instr2.obj : instr2.c sim.h
  32.      $(compile) $<
  33.  
  34.  
  35.